type go/constant.complexVal
22 uses
go/constant (current package)
value.go#L101: complexVal struct{ re, im Value }
value.go#L111: func (complexVal) Kind() Kind { return Complex }
value.go#L239: func (x complexVal) String() string { return fmt.Sprintf("(%s + %si)", x.re, x.im) }
value.go#L257: func (x complexVal) ExactString() string {
value.go#L268: func (complexVal) implementsValue() {}
value.go#L280: func vtoc(x Value) complexVal { return complexVal{x, int64Val(0)} }
value.go#L320: return complexVal{re, im}
value.go#L671: case complexVal:
value.go#L817: case complexVal:
value.go#L832: case complexVal:
value.go#L887: case complexVal:
value.go#L909: case complexVal:
value.go#L923: case complexVal:
value.go#L953: case unknownVal, int64Val, intVal, ratVal, floatVal, complexVal:
value.go#L972: case complexVal:
value.go#L1029: case complexVal:
value.go#L1077: case complexVal:
value.go#L1217: case complexVal:
value.go#L1218: y := y.(complexVal)
value.go#L1374: case complexVal:
value.go#L1375: y := y.(complexVal)